From: Arjan Molenaar Date: Fri, 6 Jan 2023 11:08:55 +0000 (+0100) Subject: macos: Command should not come from gettext X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~116^2^2~97^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=c52978dfa4eef969d8a8354dc978947118353da8;p=gtk4.git macos: Command should not come from gettext Instead, just provide the right character. See also https://gitlab.gnome.org/GNOME/gtk/-/blob/main/gtk/gtkaccelgroup.c#L916. --- diff --git a/gtk/gtkshortcutlabel.c b/gtk/gtkshortcutlabel.c index 3da6006b70..47bcd905fa 100644 --- a/gtk/gtkshortcutlabel.c +++ b/gtk/gtkshortcutlabel.c @@ -147,7 +147,7 @@ get_labels (guint key, GdkModifierType modifier, guint *n_mods) #ifndef GDK_WINDOWING_MACOS labels[i++] = C_("keyboard label", "Meta"); #else - labels[i++] = C_("keyboard label", "⌘"); + labels[i++] = "⌘"; #endif *n_mods = i;